runtime.heapStatsDelta.smallAllocCount (field)

10 uses

	runtime (current package)
		mcache.go#L166: 		atomic.Xadd64(&stats.smallAllocCount[spc.sizeclass()], slotsUsed)
		mcache.go#L284: 			atomic.Xadd64(&stats.smallAllocCount[spanClass(i).sizeclass()], slotsUsed)
		metrics.go#L228: 				for i, count := range in.heapStats.smallAllocCount[1:] {
		metrics.go#L613: 	for i := range a.smallAllocCount {
		metrics.go#L614: 		na := a.smallAllocCount[i]
		mstats.go#L412: 		a := consStats.smallAllocCount[i]
		mstats.go#L685: 	smallAllocCount [gc.NumSizeClasses]uint64 // number of allocs for small objects
		mstats.go#L706: 	for i := range b.smallAllocCount {
		mstats.go#L707: 		a.smallAllocCount[i] += b.smallAllocCount[i]